summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/evcp')
-rw-r--r--app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx5
-rw-r--r--app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx6
2 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx b/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx
index 886d061d..325037d8 100644
--- a/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx
+++ b/app/[lng]/evcp/(evcp)/evaluation-target-list/page.tsx
@@ -10,6 +10,9 @@ import { getEvaluationTargets } from "@/lib/evaluation-target-list/service"
import { InformationButton } from "@/components/information/information-button"
import { EvaluationTargetsTable } from "@/lib/evaluation-target-list/table/evaluation-target-table"
+export const dynamic = 'force-dynamic'
+export const revalidate = 0
+
export const metadata: Metadata = {
title: "협력업체 평가 대상 관리",
description: "협력업체 평가 대상을 확정하고 담당자를 지정합니다.",
@@ -50,7 +53,7 @@ export default async function EvaluationTargetsPage(props: EvaluationTargetsPage
{/* Main Table */}
<React.Suspense
- key={`evaluation-targets-${search.page}-${JSON.stringify(search.filters)}-${search.joinOperator}-${search.search || 'no-search'}`}
+ // key={`evaluation-targets-${search.page}-${JSON.stringify(search.filters)}-${search.joinOperator}-${search.search || 'no-search'}`}
fallback={
<DataTableSkeleton
columnCount={12}
diff --git a/app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx b/app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx
index 00192d85..51ff6003 100644
--- a/app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx
+++ b/app/[lng]/evcp/(evcp)/tech-vendor-possible-items/page.tsx
@@ -6,7 +6,7 @@ import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
import { Shell } from "@/components/shell"
import { searchParamsTechVendorPossibleItemsCache } from "@/lib/tech-vendor-possible-items/validations"
-import { getTechVendorPossibleItems, getUniqueTechVendorTypes } from "@/lib/tech-vendor-possible-items/service"
+import { getTechVendorPossibleItems } from "@/lib/tech-vendor-possible-items/service"
import { PossibleItemsDataTable } from "@/lib/tech-vendor-possible-items/table/possible-items-data-table"
import { TechVendorPossibleItemsContainer } from "@/components/tech-vendor-possible-items/tech-vendor-possible-items-container"
@@ -31,9 +31,9 @@ export default async function TechVendorPossibleItemsPage(props: TechVendorPossi
const promises = Promise.all([
getTechVendorPossibleItems({
...search,
- filters: validFilters,
+ filters: validFilters as any,
}),
- getUniqueTechVendorTypes(),
+ // getUniqueTechVendorTypes(),
])
return (